home *** CD-ROM | disk | FTP | other *** search
/ Acorn Risc Technologies StrongARM CD-ROM / Acorn Risc Technologies StrongARM CD-ROM.iso / ftp / documents / acornusr / 1995 / mar95 < prev   
Encoding:
Text File  |  1996-02-28  |  4.7 KB  |  103 lines

  1. 27/01/95
  2. Questions and Answers
  3. ---------------------
  4. Where's my nearest Acorn dealer?
  5.  
  6. As the list of Acorn dealers is constantly changing, there is no fully 
  7. comprehensive up to date copy on paper, although paper copy detailing the 
  8. majority of dealers is available. Customer Services maintains an on-line 
  9. database of dealers and their addresses, from which we can generate a 
  10. comma-separated variable (CSV) list suitable for loading into most other 
  11. databases. This list is available via anonymous ftp as 
  12. ftp.acorn.co.uk:/pub/documents/dealers/uk, and by download from the "Acorn 
  13. support" areas of Arcade (Tel: +44 181 654 2212) and Digital Databank 
  14. (Tel: +44 1707 329306) BB systems. In addition, a plaintext list of overseas 
  15. dealers and distributors is available as 
  16. ftp.acorn.co.uk:/pub/documents/international. If you don't have a modem, you 
  17. can always ask us!
  18.  
  19. MODE in BASIC: The Next Generation
  20. ----------------------------------
  21. The way in which modes are specified on the Risc PC has been changed in order 
  22. to allow the new extended range of modes to be accessed;  modes now have 
  23. associated strings, instead of just numbers.
  24.  
  25. A typical BASIC command to change mode would now be
  26.  
  27. MODE "X800 Y600 C32K EX1 EY1 F50"
  28.  
  29. which can be broken down into:
  30.  
  31. X800: 800 pixels horizontally
  32. Y600: 600 pixels vertically
  33. This is a fairly common resolution; alternative choices are determined by the 
  34. Monitor Definition File.
  35. C32K: 32016 colours. Other common options, depending on the resolution of the 
  36. mode and VIDC bandwidth, are:
  37.  
  38. C256 256 colours
  39. G256 256 grey levels
  40. C16M 16392192 colours 
  41.  
  42. This last level is actually better than the average human eye can resolve 
  43. (the eye has been shown to be able to chromatically resolve roughly 15.4 
  44. million hues).
  45.  
  46. EX1 EY1: Horizontal and vertical "eigenvalues" of 1. These eigenvalues relate 
  47. to the method of mapping of OS units onto pixels. If EX1 is increased, the most 
  48. obvious effect is that the size of windows, text and icons decreases in the X 
  49. direction; this effect can be used to produce a Desktop with an apparently 
  50. larger work area. However, if the eigenvalue is set to a high value, parts of 
  51. the display may "go missing" owing to the mapping producing pixel overlap.
  52.  
  53. F50 50Hz frame rate.
  54.  
  55. This string representation of screen modes can be accessed from the "Mode" 
  56. entry on the icon bar menu belonging to the standard screen control icon.
  57.  
  58. Many "old" style screen mode numbers can still be used; modes 0, 1, 8, 9, 11, 
  59. 12, 13, 14, 15, 25, 26, 27, 28, 41, 42, 43, 44, 45, 46, 47, 48 and 49 are 
  60. explicitly defined, and modes close to the resolution of other "old" modes may 
  61. be defined in MDFs.
  62.  
  63. Somewhere In Time
  64. -----------------
  65. The first 32 bit Acorn machine to use a rechargeable battery to power the 
  66. real-time clock and CMOS RAM was the A3000. The batteries used are considered 
  67. to have a lifetime of five years; this means that the batteries on many A3000s 
  68. are reaching the end of their lifespan. If your machine appears to reconfigure 
  69. itself on power-up, or the real-time clock shows a decidedly unreal time, you 
  70. need to contact your dealer for a battery replacement. The CMOS uses 2 bits to 
  71. determine the relationship between the current year and the next leap year, so 
  72. you may also find your reset clock defaulting to 1991 by virtue of a leap year 
  73. having occurred since RISC OS 3.1 was released; a reset to 1995 using !Alarm 
  74. will fix matters, and your clock will still roll over properly to 1996 at the 
  75. end of this year!
  76.  
  77. World Wide What?
  78. ----------------
  79. Probably the most talked-about method of accessing Internet-based resource over 
  80. the last couple of years is World Wide Web, particularly when connected with a 
  81. new generation of graphical hypertext-based client programs such as xmosaic. Web 
  82. documents are served using the HyperText Transfer Protocol (http), and addresses 
  83. of Web documents are specified using Uniform Resource Locators (URLs). A URL 
  84. has the syntax:
  85.  
  86.  <protocol>://<site>/{<directory>/ |<filename.html>}
  87.  
  88. Currently there are two freeware browsers available for RISC OS, and several 
  89. companies are working on commercial packages which will also include browsers.
  90.  
  91. During November Acorn opened www.acorn.co.uk, our own server containing a range 
  92. of product and technical information, so we could determine if users would find 
  93. such a service valuable. 17638 accesses and plenty of constructive email 
  94. convinced us we were doing the right thing!
  95.  
  96. Currently www.acorn is being overhauled and re-worked in readiness for a full 
  97. opening, and hence is unavailable. Some concern has been expressed over the 
  98. www.acorn alias having been removed from our DNS; this was done because 
  99. attempted logins to the blocked service were not generating timeouts correctly, 
  100. resulting in hung processes at the client end.
  101.  
  102.  
  103.